home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
Classes
/
2.0_GraphView
/
Examples
/
Logger
/
CommonDefs.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-06-22
|
242 b
|
12 lines
#import <math.h>
typedef double NXDCoord;
typedef struct _NXDPoint
{
NXDCoord x, y;
} NXDPoint;
#define PI 3.1415926535897932384626433832795029
#define str(x) # x
#define sqrt(x) pow(x,0.5)
#define sqr(x) pow(x,2.0)